  .hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #1b3a57 100%);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 37, 64, 0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    color: #e8f4f8;
}

/* Button Styling */
.hero-button-wrapper {
    margin: 2rem 0;
}

.btn-primary-custom {
    background: #ffffff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #000; /* <-- ganti dari white jadi hitam */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    /* box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3); */
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4); */
    color: #000; /* <-- pastikan tetap hitam saat hover */
    text-decoration: none;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:active {
    transform: translateY(0);
}

.btn-primary-custom i {
    transition: transform 0.3s ease;
}

.btn-primary-custom:hover i {
    transform: translateX(3px);
}

/* Stats Styling */
.stats-container {
    margin-top: 3rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-box h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.stat-box small {
    font-size: 0.9rem;
    color: #b8d4e3;
    font-weight: 500;
}

/* Image Styling */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

.trust-partner-section h2 {
    font-size: 2rem;
    color: #0a2540; /* biru */
}

.trust-partner-section p {
    font-size: 1.05rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.feature-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.feature-box i {
    font-size: 1.4rem;
    color: #0066cc;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-box h5 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.feature-box p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Center Image */
.feature-image {
    max-width: 340px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.easy-steps-section {
    /* background-color: #f8f9fa; */
    border-radius: 16px;
    margin: 40px auto;
}

.steps-image {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

.steps-content {
    padding: 20px;
}

.step-item {
    transition: all 0.3s ease;
	background-color: #fff;
    padding: 15px;
    border-radius: 8px;
}

/* .step-item:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: translateX(5px);
} */

.step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon-alt {
    width: 48px;
    height: 48px;
    background: rgba(0, 123, 255, 0.1);
    /* border: 2px solid #007bff; */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon-alt .step-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: none;
}

.step-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    /* Remove the filter to show the original icon */
    filter: none;
}

.step-content h5 {
    color: #2c3e50;
    font-size: 1.1rem;
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.text-primary {
    color: #007bff !important;
}

.tools-section {
    background-color: #f8f9fa;
    border-radius: 16px;
    margin: 40px auto;
    padding: 60px 30px;
    /* border: 2px dashed #007bff; */
}

.tools-section h2 {
    color: #1b3a57;
    font-size: 2.2rem;
}

.tools-section p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.tool-card {
    padding: 30px 20px;
    background: transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.tool-card:hover {
    transform: translateY(-5px);
}

.tool-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tool-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #244869 0%, #276da5 100%);
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(32, 108, 179, 0.3);
}


.tool-card:hover .tool-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #244869 0%, #276da5 100%);
    box-shadow: 0 6px 20px rgba(32, 108, 179, 0.5);
}

.tool-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes icon white */
}

.tool-card h5 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    /* background-color: #e8e9ea;	 */
    border-radius: 16px;
    margin: 40px auto;
    padding: 60px 30px;
}

.testimonials-section h2 {
    color: #1b3a57;
    font-size: 2.2rem;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    /* border-left: 4px solid #007bff; */
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-info h6 {
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-info small {
    color: #6c757d;
    font-size: 0.85rem;
}

.testimonial-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-text::before {
    font-size: 2rem;
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-text::after {
    font-size: 2rem;
    position: absolute;
    bottom: -15px;
    right: 0px;
    font-family: Georgia, serif;
}

/* FAQ Section */
.faq-section {
    border-radius: 16px;
    margin: 40px auto;
    padding: 60px 30px;
}

.faq-section h2 {
    color: #1b3a57;
    font-size: 2.2rem;
}

.faq-section p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question span {
    color: #2c3e50;
    font-size: 1rem;
    flex-grow: 1;
    margin-right: 15px;
}

.faq-arrow {
    color: #000000;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-arrow {
    transform: rotate(90deg);
}

/* Call to Action Section */
.cta-section {
    background: url('/apps_modules/modules_public/comdev_business/views/public/themes/user/images/cta-background.jpg') center/cover no-repeat;
    background-color: #2980b9; /* Fallback color */
    margin: 60px 0 0 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/apps_modules/public/themes/user/images/icons/comdev_cta.png') center/cover no-repeat, linear-gradient(135deg, rgba(30, 74, 107, 0.8) 0%, rgba(44, 79, 103, 0.7) 50%, rgba(52, 152, 219, 0.6) 100%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    margin-top: 2rem;
}

.btn-cta-primary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-cta-primary:hover {
    background: #ffffff;
    color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.btn-cta-secondary {
    background: #ffffff;
    border: 2px solid #ffffff;
    color: #175c89;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}


/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        margin: 40px 0 0 0;
        padding: 50px 0;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px !important;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 180px;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        margin: 20px auto;
        padding: 40px 20px;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-content {
        padding: 15px;
        padding-top: 10px;
    }
    
    .faq-question span {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .faq-section h2 {
        font-size: 1.6rem;
    }
    
    .faq-question {
        padding: 12px;
    }
    
    .faq-content {
        padding: 12px;
        padding-top: 8px;
    }
}

@media (max-width: 768px) {
    .easy-steps-section {
        margin: 20px auto;
        padding: 30px 15px;
    }
    
    .steps-content {
        padding: 10px;
    }
    
    .step-icon {
        width: 48px;
        height: 48px;
    }
    
    .step-icon-img {
        width: 28px;
        height: 28px;
    }
    
    .step-icon-alt {
        width: 48px;
        height: 48px;
    }
    
    .step-icon-alt .step-icon-img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 992px) {
    .trust-partner-section .row {
        flex-direction: column;
    }
    .feature-image {
        margin: 30px auto;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .btn-primary-custom {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .stat-box {
        margin-bottom: 15px;
    }
    
    .hero-image {
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .stats-container {
        margin-top: 2rem;
    }
}